771b9a92eecc9b00c9d2ae5a86fc64c911bcbfc1,advanced/src/java/org/neo4j/impl/shell/apps/Ls.java,Ls,getNiceType,#Object#,245
Before Change
private String getNiceType( Object value )
{
String cls = value.getClass().getName();
return cls.substring(
String.class.getPackage().getName().length() + 1 );
}
private int findLongestKey( NodeOrRelationship thing )
After Change
private static String getNiceType( Object value )
{
return Set.getValueTypeName( value.getClass() );
}
private static int findLongestKey( NodeOrRelationship thing )